for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export class Random {
uniform(max, min) {
return Math.random() * (max - min) + min;
}
int(max, min) {
return Math.floor(this.uniform(max, min));
export const random = new Random();